home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-11 | 1.3 KB | 38 lines | [TEXT/MPS ] |
- AEGestalt is a MacApp 3.0 application which shows how to make use of the builtin
- Apple events support. The application will query for a node, and get the
- gConfiguration information from the same program running on either the same
- or another machine.
-
-
- System dependencies:
-
- MPW 3.2
- MPW C++ 3.2b2 or higher
- MacApp 3.0b3
- System 7.0 and 7.0.1
-
-
- For more information, correspondance and bug reporting, send email to me:
- ksand@apple.com (Usenet)
- KSAND (AppleLink)
- 75300,1331 (CompuServe)
-
- It does not either hurt to mention my name in the source code or any About… box
- if you are using parts of this code :-).
-
- Kent Sandvik DTS
-
- More ramblings from Kent:
-
- • Why all the files?
- I wanted to place each class in a separate file, header-member function combination.
- This to test out if this is better concerning compilation and linking times.
- I'm still not impressed, but in the case of reusing classes it's more fun to
- copy a file, than to copy and paste code.
-
- • Why all the empty constructors?
- This because MPW 3.2 C++ generates ptabs for each copy constructor (default one
- that the compiler generates if one is missing), and my creating empty ones we
- get a smaller global data space. Well, we are saving about 3-4%...
-
- • Read the source code for more illuminating comments!